09. Quiz: ViewModel

ViewModel

ViewModels should be aware of the UI layer.

SOLUTION: False

MVVM

Proper MVVM architecture dictates a unidirectional data flow.

SOLUTION: True

MVVM2

Methods that update TextViews should exist in which layer?

SOLUTION: `View`

MVVM4

Fields that store references to Views should be stored in which layer?

SOLUTION: `View`

MVVM5

Fields that store data required for business logic should be stored in which layer?

SOLUTION: `ViewModel`

MVVM5

Fields that represent data for objects should be stored in which layer?

SOLUTION: `View`